home *** CD-ROM | disk | FTP | other *** search
/ Disc Station 7 & 8 (Korea) / Disc Station Vol 7+8 (Korea).img / ETC / IE401_H / AXA.CAB / danim.dll / RCDATA / 13 next >
Text File  |  1997-11-14  |  35KB  |  1,617 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  225;
  136.  0.00000;-1.00000; 0.00000;,
  137.  0.00000;-0.97493;-0.22252;,
  138.  0.00000;-0.90097;-0.43388;,
  139.  0.00000;-0.78183;-0.62349;,
  140.  0.00000;-0.62349;-0.78183;,
  141.  0.00000;-0.43388;-0.90097;,
  142.  0.00000;-0.22252;-0.97493;,
  143.  0.00000;-0.00000;-1.00000;,
  144.  0.00000; 0.22252;-0.97493;,
  145.  0.00000; 0.43388;-0.90097;,
  146.  0.00000; 0.62349;-0.78183;,
  147.  0.00000; 0.78183;-0.62349;,
  148.  0.00000; 0.90097;-0.43388;,
  149.  0.00000; 0.97493;-0.22252;,
  150.  0.00000; 1.00000;-0.00000;,
  151.  0.00000;-1.00000; 0.00000;,
  152. -0.09655;-0.97493;-0.20048;,
  153. -0.18826;-0.90097;-0.39092;,
  154. -0.27052;-0.78183;-0.56174;,
  155. -0.33922;-0.62349;-0.70441;,
  156. -0.39092;-0.43388;-0.81174;,
  157. -0.42301;-0.22252;-0.87838;,
  158. -0.43388;-0.00000;-0.90097;,
  159. -0.42301; 0.22252;-0.87838;,
  160. -0.39092; 0.43388;-0.81174;,
  161. -0.33922; 0.62349;-0.70441;,
  162. -0.27052; 0.78183;-0.56174;,
  163. -0.18826; 0.90097;-0.39092;,
  164. -0.09655; 0.97493;-0.20048;,
  165. -0.00000; 1.00000;-0.00000;,
  166.  0.00000;-1.00000; 0.00000;,
  167. -0.17397;-0.97493;-0.13874;,
  168. -0.33922;-0.90097;-0.27052;,
  169. -0.48746;-0.78183;-0.38874;,
  170. -0.61126;-0.62349;-0.48746;,
  171. -0.70441;-0.43388;-0.56174;,
  172. -0.76223;-0.22252;-0.60786;,
  173. -0.78183;-0.00000;-0.62349;,
  174. -0.76223; 0.22252;-0.60786;,
  175. -0.70441; 0.43388;-0.56174;,
  176. -0.61126; 0.62349;-0.48746;,
  177. -0.48746; 0.78183;-0.38874;,
  178. -0.33922; 0.90097;-0.27052;,
  179. -0.17397; 0.97493;-0.13874;,
  180. -0.00000; 1.00000;-0.00000;,
  181.  0.00000;-1.00000; 0.00000;,
  182. -0.21694;-0.97493;-0.04952;,
  183. -0.42301;-0.90097;-0.09655;,
  184. -0.60786;-0.78183;-0.13874;,
  185. -0.76223;-0.62349;-0.17397;,
  186. -0.87838;-0.43388;-0.20048;,
  187. -0.95048;-0.22252;-0.21694;,
  188. -0.97493;-0.00000;-0.22252;,
  189. -0.95048; 0.22252;-0.21694;,
  190. -0.87838; 0.43388;-0.20048;,
  191. -0.76223; 0.62349;-0.17397;,
  192. -0.60786; 0.78183;-0.13874;,
  193. -0.42301; 0.90097;-0.09655;,
  194. -0.21694; 0.97493;-0.04952;,
  195. -0.00000; 1.00000;-0.00000;,
  196.  0.00000;-1.00000; 0.00000;,
  197. -0.21694;-0.97493; 0.04952;,
  198. -0.42301;-0.90097; 0.09655;,
  199. -0.60786;-0.78183; 0.13874;,
  200. -0.76223;-0.62349; 0.17397;,
  201. -0.87838;-0.43388; 0.20048;,
  202. -0.95048;-0.22252; 0.21694;,
  203. -0.97493;-0.00000; 0.22252;,
  204. -0.95048; 0.22252; 0.21694;,
  205. -0.87838; 0.43388; 0.20048;,
  206. -0.76223; 0.62349; 0.17397;,
  207. -0.60786; 0.78183; 0.13874;,
  208. -0.42301; 0.90097; 0.09655;,
  209. -0.21694; 0.97493; 0.04952;,
  210. -0.00000; 1.00000; 0.00000;,
  211.  0.00000;-1.00000; 0.00000;,
  212. -0.17397;-0.97493; 0.13874;,
  213. -0.33922;-0.90097; 0.27052;,
  214. -0.48746;-0.78183; 0.38874;,
  215. -0.61126;-0.62349; 0.48746;,
  216. -0.70441;-0.43388; 0.56174;,
  217. -0.76223;-0.22252; 0.60786;,
  218. -0.78183;-0.00000; 0.62349;,
  219. -0.76223; 0.22252; 0.60786;,
  220. -0.70441; 0.43388; 0.56174;,
  221. -0.61126; 0.62349; 0.48746;,
  222. -0.48746; 0.78183; 0.38874;,
  223. -0.33922; 0.90097; 0.27052;,
  224. -0.17397; 0.97493; 0.13874;,
  225. -0.00000; 1.00000; 0.00000;,
  226.  0.00000;-1.00000; 0.00000;,
  227. -0.09655;-0.97493; 0.20048;,
  228. -0.18826;-0.90097; 0.39092;,
  229. -0.27052;-0.78183; 0.56174;,
  230. -0.33922;-0.62349; 0.70441;,
  231. -0.39092;-0.43388; 0.81174;,
  232. -0.42301;-0.22252; 0.87838;,
  233. -0.43388;-0.00000; 0.90097;,
  234. -0.42301; 0.22252; 0.87838;,
  235. -0.39092; 0.43388; 0.81174;,
  236. -0.33922; 0.62349; 0.70441;,
  237. -0.27052; 0.78183; 0.56174;,
  238. -0.18826; 0.90097; 0.39092;,
  239. -0.09655; 0.97493; 0.20048;,
  240. -0.00000; 1.00000; 0.00000;,
  241.  0.00000;-1.00000; 0.00000;,
  242. -0.00000;-0.97493; 0.22252;,
  243. -0.00000;-0.90097; 0.43388;,
  244. -0.00000;-0.78183; 0.62349;,
  245. -0.00000;-0.62349; 0.78183;,
  246. -0.00000;-0.43388; 0.90097;,
  247. -0.00000;-0.22252; 0.97493;,
  248. -0.00000;-0.00000; 1.00000;,
  249. -0.00000; 0.22252; 0.97493;,
  250. -0.00000; 0.43388; 0.90097;,
  251. -0.00000; 0.62349; 0.78183;,
  252. -0.00000; 0.78183; 0.62349;,
  253. -0.00000; 0.90097; 0.43388;,
  254. -0.00000; 0.97493; 0.22252;,
  255. -0.00000; 1.00000; 0.00000;,
  256.  0.00000;-1.00000; 0.00000;,
  257.  0.09655;-0.97493; 0.20048;,
  258.  0.18826;-0.90097; 0.39092;,
  259.  0.27052;-0.78183; 0.56174;,
  260.  0.33922;-0.62349; 0.70441;,
  261.  0.39092;-0.43388; 0.81174;,
  262.  0.42301;-0.22252; 0.87838;,
  263.  0.43388;-0.00000; 0.90097;,
  264.  0.42301; 0.22252; 0.87838;,
  265.  0.39092; 0.43388; 0.81174;,
  266.  0.33922; 0.62349; 0.70441;,
  267.  0.27052; 0.78183; 0.56174;,
  268.  0.18826; 0.90097; 0.39092;,
  269.  0.09655; 0.97493; 0.20048;,
  270.  0.00000; 1.00000; 0.00000;,
  271.  0.00000;-1.00000; 0.00000;,
  272.  0.17397;-0.97493; 0.13874;,
  273.  0.33922;-0.90097; 0.27052;,
  274.  0.48746;-0.78183; 0.38874;,
  275.  0.61126;-0.62349; 0.48746;,
  276.  0.70441;-0.43388; 0.56174;,
  277.  0.76223;-0.22252; 0.60786;,
  278.  0.78183;-0.00000; 0.62349;,
  279.  0.76223; 0.22252; 0.60786;,
  280.  0.70441; 0.43388; 0.56174;,
  281.  0.61126; 0.62349; 0.48746;,
  282.  0.48746; 0.78183; 0.38874;,
  283.  0.33922; 0.90097; 0.27052;,
  284.  0.17397; 0.97493; 0.13874;,
  285.  0.00000; 1.00000; 0.00000;,
  286.  0.00000;-1.00000; 0.00000;,
  287.  0.21694;-0.97493; 0.04952;,
  288.  0.42301;-0.90097; 0.09655;,
  289.  0.60786;-0.78183; 0.13874;,
  290.  0.76223;-0.62349; 0.17397;,
  291.  0.87838;-0.43388; 0.20048;,
  292.  0.95048;-0.22252; 0.21694;,
  293.  0.97493;-0.00000; 0.22252;,
  294.  0.95048; 0.22252; 0.21694;,
  295.  0.87838; 0.43388; 0.20048;,
  296.  0.76223; 0.62349; 0.17397;,
  297.  0.60786; 0.78183; 0.13874;,
  298.  0.42301; 0.90097; 0.09655;,
  299.  0.21694; 0.97493; 0.04952;,
  300.  0.00000; 1.00000; 0.00000;,
  301.  0.00000;-1.00000; 0.00000;,
  302.  0.21694;-0.97493;-0.04952;,
  303.  0.42301;-0.90097;-0.09655;,
  304.  0.60786;-0.78183;-0.13874;,
  305.  0.76223;-0.62349;-0.17397;,
  306.  0.87838;-0.43388;-0.20048;,
  307.  0.95048;-0.22252;-0.21694;,
  308.  0.97493;-0.00000;-0.22252;,
  309.  0.95048; 0.22252;-0.21694;,
  310.  0.87838; 0.43388;-0.20048;,
  311.  0.76223; 0.62349;-0.17397;,
  312.  0.60786; 0.78183;-0.13874;,
  313.  0.42301; 0.90097;-0.09655;,
  314.  0.21694; 0.97493;-0.04952;,
  315.  0.00000; 1.00000;-0.00000;,
  316.  0.00000;-1.00000; 0.00000;,
  317.  0.17397;-0.97493;-0.13874;,
  318.  0.33922;-0.90097;-0.27052;,
  319.  0.48746;-0.78183;-0.38874;,
  320.  0.61126;-0.62349;-0.48746;,
  321.  0.70441;-0.43388;-0.56174;,
  322.  0.76223;-0.22252;-0.60786;,
  323.  0.78183;-0.00000;-0.62349;,
  324.  0.76223; 0.22252;-0.60786;,
  325.  0.70441; 0.43388;-0.56174;,
  326.  0.61126; 0.62349;-0.48746;,
  327.  0.48746; 0.78183;-0.38874;,
  328.